//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2013.10.22 at 07:59:21 PM CEST
//
package de.hpi.bpmn2_0.model;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
/**
* <p>Java class for tNotifyCondition complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* <complexType name="tNotifyCondition">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="type" type="{http://www.omg.org/spec/BPMN/20100524/MODEL}tNotifyConditionType"/>
* <element name="condValueList" type="{http://www.omg.org/spec/BPMN/20100524/MODEL}tCondValueList" minOccurs="0"/>
* <element name="restriction" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "tNotifyCondition", propOrder = {
"type",
"condValueList",
"restriction"
})
public class NotifyCondition {
@XmlElement(required = true)
protected NotifyConditionType type;
protected CondValueList condValueList;
protected String restriction;
/**
* Gets the value of the type property.
*
* @return
* possible object is
* {@link NotifyConditionType }
*
*/
public NotifyConditionType getType() {
return type;
}
/**
* Sets the value of the type property.
*
* @param value
* allowed object is
* {@link NotifyConditionType }
*
*/
public void setType(NotifyConditionType value) {
this.type = value;
}
/**
* Gets the value of the condValueList property.
*
* @return
* possible object is
* {@link CondValueList }
*
*/
public CondValueList getCondValueList() {
return condValueList;
}
/**
* Sets the value of the condValueList property.
*
* @param value
* allowed object is
* {@link CondValueList }
*
*/
public void setCondValueList(CondValueList value) {
this.condValueList = value;
}
/**
* Gets the value of the restriction property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getRestriction() {
return restriction;
}
/**
* Sets the value of the restriction property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setRestriction(String value) {
this.restriction = value;
}
}